home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 258_01 / forloop.c < prev    next >
Encoding:
Text File  |  1988-03-28  |  256 b   |  11 lines

  1.                                           /* Chapter 3 - Program 3 */
  2. /* This is an example of a for loop */
  3.  
  4. main()
  5. {
  6. int index;
  7.  
  8.    for(index = 0;index < 6;index = index + 1)
  9.      printf("The value of the index is %d\n",index);
  10. }
  11.